home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / intmail2 / smtpsu.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-07-20  |  692 b   |  39 lines

  1. unit Smtpsu;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TSetupDlg = class(TForm)
  10.     Label1: TLabel;
  11.     ServerEdit: TEdit;
  12.     Label2: TLabel;
  13.     UserAddressEdit: TEdit;
  14.     Label3: TLabel;
  15.     UserNameEdit: TEdit;
  16.     Label4: TLabel;
  17.     LogFileNameEdit: TEdit;
  18.     CharSetComboBox: TComboBox;
  19.     Label6: TLabel;
  20.     OKButton: TButton;
  21.     CancelButton: TButton;
  22.     Bevel1: TBevel;
  23.     EncodingComboBox: TComboBox;
  24.     Label5: TLabel;
  25.   private
  26.     { Private declarations }
  27.   public
  28.     { Public declarations }
  29.   end;
  30.  
  31. var
  32.   SetupDlg: TSetupDlg;
  33.  
  34. implementation
  35.  
  36. {$R *.DFM}
  37.  
  38. end.
  39.